home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / pagemakerclasslibrary / commands / pprivatedata.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-13  |  769 b   |  38 lines

  1. /*
  2.  *--- PPrivateData.h ------------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Thu, Oct 12, 1995 @ 10:48 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PPrivateData__
  10. #define __PPrivateData__
  11.  
  12. #include "PGetPageOptions.h"
  13. #include "PMTypes.h"
  14.  
  15. class PPrivateData
  16. {
  17.  
  18. public:
  19.  
  20.     PPrivateData
  21.       (    const char *    sDeveloperID,
  22.         const char *    sPluginID,
  23.         short            cTargetClass,
  24.         unsigned long    nTypeFlag,
  25.         unsigned long    nTargetID,
  26.         short            bChange,
  27.         PMHandle        hPrivateData,
  28.         unsigned long    nSize );
  29.  
  30. private:
  31.  
  32.     PPrivateData();
  33. };
  34.  
  35. #endif
  36.  
  37. // end of PPrivateData.h
  38.